home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 22 / PC Actual CD 22.iso / progs / Netobj / CDK / NetObjectsFusionCDK5_97.exe / _SETUP.1 / PopObject.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-01-31  |  1.2 KB  |  44 lines

  1. import java.net.URL;
  2.  
  3. public class PopObject {
  4.    public int messageType;
  5.    public static final int MOUSE_EXIT = 0;
  6.    public static final int MOUSE_ENTER = 1;
  7.    public static final int MOUSE_DOWN = 2;
  8.    private int buttonNum;
  9.    private URL buttonURL;
  10.    private URL[] URLList;
  11.    private String[] stringList;
  12.  
  13.    PopObject(int buttonNum, URL buttonURL, URL[] URLList, String[] stringList) {
  14.       this.buttonNum = buttonNum;
  15.       this.buttonURL = buttonURL;
  16.       this.URLList = URLList;
  17.       this.stringList = stringList;
  18.    }
  19.  
  20.    public URL[] getURLList() {
  21.       return this.URLList;
  22.    }
  23.  
  24.    public String[] getStringList() {
  25.       return this.stringList;
  26.    }
  27.  
  28.    public int getButtonNum() {
  29.       return this.buttonNum;
  30.    }
  31.  
  32.    public void setMessageType(int messageType) {
  33.       this.messageType = messageType;
  34.    }
  35.  
  36.    public int getMessageType() {
  37.       return this.messageType;
  38.    }
  39.  
  40.    public URL getButtonURL() {
  41.       return this.buttonURL;
  42.    }
  43. }
  44.